home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / ply15dat.zip / WAKE.PI < prev    next >
Text File  |  1992-09-19  |  451b  |  26 lines

  1. // Polyray Raytracer
  2. // Height field sample - Wake behind a boat
  3. // by Alexander Enzmann
  4.  
  5. include "..\colors.inc"
  6.  
  7. viewpoint {
  8.    from <0,5,-10>
  9.    at <0,0,0>
  10.    up <0,1,0>
  11.    angle 45
  12.    resolution 256, 256
  13.    }
  14.  
  15. light <-45, 25, -4>
  16. light <0, 25, 0>
  17.  
  18. // Define the wake based on a Targa height field
  19. object {
  20.    height_field "wave.tga"
  21.    translate <-1/2,0,-1/2>
  22.    scale <8, 0.03, 8>
  23.    rotate <0, -30, 0>
  24.    shiny_red
  25.    }
  26.